home *** CD-ROM | disk | FTP | other *** search
/ Designer's Club 1997 July / Designer's Club 1997 July.iso / pc / ideasrc / demo4.dir / 00002.ls < prev    next >
Encoding:
Text File  |  1997-05-30  |  309 b   |  18 lines

  1. on mouseDown
  2.   repeat while the mouseDown
  3.     set the visible of sprite 2 to 0
  4.     updateStage()
  5.   end repeat
  6.   set the visible of sprite 2 to 1
  7.   if the frame < 7 then
  8.     go(7)
  9.   end if
  10.   if the frame = the lastFrame then
  11.     exit
  12.   else
  13.     sound stop 1
  14.     sound stop 2
  15.     go(the frame + 1)
  16.   end if
  17. end
  18.